翻訳と辞書
Words near each other
・ Pascal Rhéaume
・ Pascal Richard
・ Pascal Richard (skeleton racer)
・ Pascal Riché
・ Pascal Rigo
・ Pascal Robert
・ Pascal Rogé
・ Pascal Roller
・ Pascal Salin
・ Pascal Schmidt
・ Pascal Schmidt (footballer born 1992)
・ Pascal Schmidt (footballer, born 1993)
・ Pascal Schumacher
・ Pascal Schürpf
・ Pascal Script
Pascal server page
・ Pascal Sevran
・ Pascal Simbikangwa
・ Pascal Simon
・ Pascal Simpson
・ Pascal Smet
・ Pascal Soriot
・ Pascal Stenzel
・ Pascal Strebel
・ Pascal Stöger
・ Pascal Sylvoz
・ Pascal Sébah
・ Pascal Taché
・ Pascal Taskin
・ Pascal Tayot


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Pascal server page : ウィキペディア英語版
Pascal server page
A Pascal Server Page is a dynamically generated web page produced using some sort of Pascal Script interpreter on the server side. When a web request is made, the Pascal Script code gets interpreted on the server and outputted into the proper format (HTML, XML, JSON, plain text).
An example of Pascal Server Page as deployed on the server ():



A Pascal Server Page


<% begin
Write('Hello World');
end.
%>

Using Pascal Script to write a few numbers...


<% var
i: Integer;
begin
for i:=1 to 10 do
Writeln(i);
end.
%>



The code above is an HTML armature containing Pascal Script code. The Pascal Script has been isolated within the “<%” and “%>” tokens. The Pascal Script code is interpreted on the server and the output (if any) is embedded into the HTML template. If a browser asks for the page above, it will actually get plain HTML code as the one below ():



A Pascal Server Page


Hello World

Using Pascal Script to write a few numbers...


1
2
3
4
5
6
7
8
9
10



To deploy and run Pascal Server Pages, a web server component with Pascal Scripting capabilities is required.
==External links==
# ( Pascal server pages for delphi/freepascal )
# ( Pascal Server Pages – Pascal Script )

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Pascal server page」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.